home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 12572 / 12572.xpi / content / rtcoptions.xul < prev   
Extensible Markup Language  |  2009-10-30  |  4KB  |  99 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <!DOCTYPE prefwindow SYSTEM "chrome://rtc/locale/prefwindow.dtd">
  4. <prefwindow id="rtcPreferences" 
  5. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  6. title="&prefwindow.title;" 
  7. onload="rtc.optionsLoad(); rtc.FetchImagesToggled();" 
  8. onclose="rtc.optionsSave();"
  9. buttons=","
  10. >
  11.  
  12.     <script type='application/x-javascript' src='chrome://rtc/content/rtc.js'></script>
  13.  
  14.     <script type="application/x-javascript">
  15.       <![CDATA[
  16.  
  17.       ]]>
  18.     </script>
  19.  
  20.  
  21.   <prefpane id="pane1" label="&pane1.title;">
  22.  
  23.     <tabbox id="tabbox">
  24.         <tabs id="tabs">
  25.             <tab id="tab1" label="&Tab1Title;"/>
  26.             <tab id="tab2" label="&Tab2Title;"/>
  27.             <tab id="tab3" label="&Tab3Title;"/>
  28.         </tabs>
  29.         <tabpanels>
  30.     
  31.             <tabpanel id="tabpanel1" orient="vertical" minheight="300">
  32.                 <checkbox id="0" label="&a;"/>
  33.                 <checkbox id="1" label="&b;"/>
  34.                 <checkbox id="2" label="&c;"/>
  35.                 <checkbox id="3" label="&d;"/>
  36.                 <checkbox id="4" label="&e;"/>
  37.                 <checkbox id="5" label="&f;"/>
  38.                 <checkbox id="6" label="&g;"/>
  39.                 <checkbox id="7" label="&h;"/>
  40.                 <checkbox id="8" label="&i;"/>
  41.                 <checkbox id="20" label="&j;"/>
  42.                 <checkbox id="21" label="&k;"/>
  43.                 <checkbox id="24" label="&n;"/>
  44.                 <spacer orient="vertical" height="5px" flex="1"/>
  45.                 <label value="&Info1;" style="font-style: italic;"/>
  46.                 <label value="&Info2;" style="font-style: italic;"/>
  47.             </tabpanel>
  48.     
  49.             <tabpanel id="tabpanel2" orient="vertical">
  50.                 <groupbox>
  51.                 <caption id="nonJSOptions" label="&nonJSOptions;" />
  52.                     <checkbox id="25" label="&o;" oncommand="rtc.DisableCSSToggled(event);"/>
  53.                     <checkbox id="26" label="&p;" oncommand="rtc.FetchImagesToggled(event);"/>
  54.                 </groupbox>
  55.                 <groupbox>
  56.                 <caption id="PermanentOptions" label="&PermanentOptions;" />
  57.                     <checkbox id="22" label="&l;"/>
  58.                     <checkbox id="23" label="&m;"/>
  59.                 </groupbox>
  60.             </tabpanel>
  61.  
  62.  
  63.             <tabpanel id="tabpanel3" orient="vertical">
  64.             <vbox maxwidth="400">
  65.             <spacer orient="vertical" height="20px"/>
  66.             <description onclick="rtc.pageInfo();">
  67.                 1. To save most media (e.g. images) you can always can use the Firefox 'Page Info' function.
  68.                 Click here to open page info, then switch to media tab.
  69.             </description>
  70.             <spacer orient="vertical" height="20px"/>
  71.             <description>
  72.                 2. Most javascript protected media can be saved if you simply disable javascript and/or CSS. 
  73.                 To disable script go to Firefox options (content tab) or install a javascript-disable button. 
  74.                 To disable styles see Firefox menu, view, page-style.
  75.             </description>
  76.             <spacer orient="vertical" height="20px"/>
  77.             <description>
  78.                 3. Most people do not know: Everything you see on a website is actually downloaded to your harddisk. 
  79.                 You just need to extract it from the browser cache (use an addon to do so).
  80.             </description>
  81.             <spacer orient="vertical" height="20px"/>
  82.             </vbox>
  83.             </tabpanel>
  84.  
  85.  
  86.  
  87.     
  88.         </tabpanels>
  89.  
  90.         <spacer orient="vertical" height="10px" flex="1"/>
  91.         <hbox pack="end">
  92.             <button id="ResetBtn" oncommand="rtc.resetPrefs(); rtc.optionsLoad(); rtc.FetchImagesToggled(); alert('Options have been reset to default!');" label="Reset all options"/>
  93.             <button id="MacAcceptBtn" oncommand="rtc.optionsSave(); window.close();" label="Ok" accesskey="o"/>
  94.         </hbox>
  95.  
  96.     </tabbox>
  97.   </prefpane>
  98.  
  99. </prefwindow>